home *** CD-ROM | disk | FTP | other *** search
- /* io2init.c - level 2 I/O initialization.
- (C) Copyright 1984 Gregory R. Mansfield - All Rights Reserved.
- G. R. Mansfield. 84/06/05.
- Ver 1.2-4723.
- */
-
- #define IO2INIT
- #include "stdio.h"
-
- FILE _iob[_NFILE] = {
- { NULL, 0, NULL, 5 /*_READ | _UNBUF*/, 0 }, /* stdin */
- { NULL, 0, NULL, 6 /*_WRITE | _UNBUF*/, 1 }, /* stdout */
- { NULL, 0, NULL, 6 /*_WRITE | _UNBUF*/, 2 }, /* stderr */
- { NULL, 0, NULL, 6 /*_WRITE | _UNBUF*/, 0 } /* stdbfr */
- };
-